home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cuj9205.zip / 1005076B < prev    next >
Text File  |  1992-06-02  |  214b  |  13 lines

  1. /*
  2.  *    Listing 8 - local malloc header
  3.  */
  4.  
  5.  
  6. #ifndef    MY_MALLOC
  7. #define    MY_MALLOC
  8.  
  9. #define    malloc(s)    loc_malloc(s,__FILE__,__LINE__)
  10. #define    free(p)        loc_free(p,__FILE__,__LINE__)
  11.  
  12. #endif    /* MY_MALLOC */
  13.